ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Core Namespace / ImGearReadOnlyDictionary<TKey,TValue> Class / Keys Property




In This Topic
    Keys Property
    In This Topic
    Gets a collection containing the keys in the dictionary.
    Syntax
    'Declaration
     
    Public ReadOnly Property Keys As ICollection(Of TKey)
    'Usage
     
    Dim instance As ImGearReadOnlyDictionary(Of TKey,TValue)
    Dim value As ICollection(Of TKey)
     
    value = instance.Keys
    public ICollection<TKey> Keys {get;}
    public: __property ICollection<TKey*>* get_Keys();
    public:
    property ICollection<TKey^>^ Keys {
       ICollection<TKey^>^ get();
    }

    Property Value

    A collection containing the keys in the dictionary.
    See Also